home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / nt / source.exe / POSIX / MAKE / LOCALT~1.C < prev    next >
C/C++ Source or Header  |  1992-07-02  |  164b  |  12 lines

  1. #include <time.h>
  2.  
  3. /*
  4.     referenced C language routine not yet finished by microsoft
  5. */
  6. struct tm *localtime(arg) {
  7.     static struct tm 
  8.         t;
  9.  
  10.     return &t;
  11. }
  12.